home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / pm / IBObject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  1.1 KB  |  45 lines

  1. /* -------------------------------------------------------------------
  2.  
  3.     Project: 
  4.  
  5.     Objective-C interface file for the class IBObject
  6.  
  7.     COPYRIGHT (C), 1995, Thomas Baier
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Date:                Rev:
  11.     1995-Aug-28            ___
  12.  
  13.  */
  14.  
  15. #ifndef _IBOBJECT_H_
  16. #define _IBOBJECT_H_
  17.  
  18. /*====================================================================
  19.                      Interface of class IBObject                      
  20. ====================================================================*/
  21. #include <util/String.h>
  22.  
  23. @interface IBObject : String
  24. {
  25. }
  26.  
  27. /* -------------------------- Initialize -------------------------- */
  28.  
  29. /* ----------------------------- Free ----------------------------- */
  30.  
  31. /* ----------- Methods for access to Instance Variables ----------- */
  32.  
  33. /* ------------------------ Public methods ------------------------ */
  34.  
  35. /* ----------------------- Private methods ------------------------ */
  36. -(BOOL) isEqual: anObject;
  37.  
  38. /* ---------------------- Archiving methods ----------------------- */
  39. -read: (TypedStream *) aStream;
  40. -write: (TypedStream *) aStream;
  41.  
  42. @end
  43. #endif
  44.  
  45.